From 44b74ff4170090673b6eeacd8c528e0abf47b7aa Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Mon, 1 Dec 2025 19:52:06 +0900 Subject: (김준회) deprecated code 정리 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/[lng]/procurement/(procurement)/faq/page.tsx | 62 ------------------------ 1 file changed, 62 deletions(-) delete mode 100644 app/[lng]/procurement/(procurement)/faq/page.tsx (limited to 'app/[lng]/procurement/(procurement)/faq/page.tsx') diff --git a/app/[lng]/procurement/(procurement)/faq/page.tsx b/app/[lng]/procurement/(procurement)/faq/page.tsx deleted file mode 100644 index 00956591..00000000 --- a/app/[lng]/procurement/(procurement)/faq/page.tsx +++ /dev/null @@ -1,62 +0,0 @@ -import { Separator } from "@/components/ui/separator" -import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs" -import { faqCategories } from "@/config/faqDataConfig" -import { FaqCard } from "@/components/faq/FaqCard" -import { Button } from "@/components/ui/button" -import { Settings } from "lucide-react" -import Link from "next/link" -import { fallbackLng } from "@/i18n/settings" - -interface Props { - params: { - lng: string; - } -} - -export default async function FaqPage(props: Props) { - const resolvedParams = await props.params - const lng = resolvedParams.lng - const localizedFaqCategories = faqCategories[lng] || faqCategories[fallbackLng]; - - return ( -
-
-
-
-
-

FAQ

- {/*

- Find answers to common questions about using the EVCP system. -

*/} -
- - - -
- - - - - {localizedFaqCategories.map((category) => ( - - {category.label} - - ))} - - - {localizedFaqCategories.map((category) => ( - - {category.items.map((item, index) => ( - - ))} - - ))} - -
-
-
- ) -} -- cgit v1.2.3